* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
    font-family: 'Times New Roman', serif;
    margin: 0;

  }
  
  /* Style the top navigation bar */
  .navbar {
    overflow: hidden;
    background-color: #333;
    min-height: 2vh;
  }
  
  /* Style the navigation bar links */
  .navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 1em 1.5em;
    text-decoration: none;
  }
  
  /* Right-aligned link */
  .navbar a.right{
    float: right;
  }

  /* Change color on hover */
  .navbar a:hover, .active{
    background-color: rgb(221, 221, 221);
    color: black;
    cursor: pointer;
  }
  
  .active a:hover{
    background-color: rgb(138, 138, 138);
    color: black;
    cursor: pointer;
  }
  /* Column container */
  .row{  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
  }
  
  /* Create two unequal columns that sits next to each other */
  /* Sidebar/left column */
  .side{
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    background-color: #f1f1f1;
    padding: 1em;
    min-height: 95vh;
  }
  
  /* Main column */
  .main{   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 1em;
  }
  
  /* Fake image, just for this example */
  .img{
    background-color: #aaa;
    width: 100%;
    padding: 0;
  }
  
  /* Footer */
  .footer{
    width: 100%;
    padding: 2em;
    text-align: center;
    background: #ddd;
  }

  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row {   
      flex-direction: column;
    }
  
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
min-height: auto;
    }
    .navbar a {
      width: 33%;
    }

    .side{
      -ms-flex: 30%; /* IE10 */
      flex: 30%;
      background-color: #f1f1f1;
      padding: 1em;
      min-height: auto;
    }
  }

  .hiddenblogblock{
    background-color: #f1f1f1;
    display:none;
  }

  .blogblock{
    background-color: #f1f1f1;
    cursor: pointer;
  }

  .projectblock{

    background-color: #f1f1f1;
  }